home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / lib-old / rand.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  607b  |  17 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. import whrandom
  5.  
  6. def srand(seed):
  7.     whrandom.seed(seed % 256, seed / 256 % 256, seed / 65536 % 256)
  8.  
  9.  
  10. def rand():
  11.     return int(whrandom.random() * 32768.0) % 32768
  12.  
  13.  
  14. def choice(seq):
  15.     return seq[rand() % len(seq)]
  16.  
  17.